home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / piano / module1.bas < prev   
BASIC Source File  |  1999-10-22  |  10KB  |  138 lines

  1. Attribute VB_Name = "Module1"
  2. 'This is a complete piano application u can contact me at haisrini@email.com
  3.  
  4.  
  5.  
  6. Option Explicit
  7.  
  8. Public Const MAXPNAMELEN = 32             ' Maximum product name length
  9.  
  10. ' Error values for functions used in this sample. See the function for more information
  11. Public Const MMSYSERR_BASE = 0
  12. Public Const MMSYSERR_BADDEVICEID = (MMSYSERR_BASE + 2)     ' device ID out of range
  13. Public Const MMSYSERR_INVALPARAM = (MMSYSERR_BASE + 11)     ' invalid parameter passed
  14. Public Const MMSYSERR_NODRIVER = (MMSYSERR_BASE + 6)        ' no device driver present
  15. Public Const MMSYSERR_NOMEM = (MMSYSERR_BASE + 7)           ' memory allocation error
  16.  
  17. Public Const MMSYSERR_INVALHANDLE = (MMSYSERR_BASE + 5)     ' device handle is invalid
  18. Public Const MIDIERR_BASE = 64
  19. Public Const MIDIERR_STILLPLAYING = (MIDIERR_BASE + 1)      ' still something playing
  20. Public Const MIDIERR_NOTREADY = (MIDIERR_BASE + 3)          ' hardware is still busy
  21. Public Const MIDIERR_BADOPENMODE = (MIDIERR_BASE + 6)       ' operation unsupported w/ open mode
  22.  
  23. 'User-defined variable the stores information about the MIDI output device.
  24. Type MIDIOUTCAPS
  25.    wMid As Integer                   ' Manufacturer identifier of the device driver for the MIDI output device
  26.                                      ' For a list of identifiers, see the Manufacturer Indentifier topic in the
  27.                                      ' Multimedia Reference of the Platform SDK.
  28.    
  29.    wPid As Integer                   ' Product Identifier Product of the MIDI output device. For a list of
  30.                                      ' product identifiers, see the Product Identifiers topic in the Multimedia
  31.                                      ' Reference of the Platform SDK.
  32.    
  33.    vDriverVersion As Long            ' Version number of the device driver for the MIDI output device.
  34.                                      ' The high-order byte is the major version number, and the low-order byte is
  35.                                      ' the minor version number.
  36.                                      
  37.    szPname As String * MAXPNAMELEN   ' Product name in a null-terminated string.
  38.    
  39.    wTechnology As Integer            ' One of the following that describes the MIDI output device:
  40.                                      '     MOD_FMSYNTH-The device is an FM synthesizer.
  41.                                      '     MOD_MAPPER-The device is the Microsoft MIDI mapper.
  42.                                      '     MOD_MIDIPORT-The device is a MIDI hardware port.
  43.                                      '     MOD_SQSYNTH-The device is a square wave synthesizer.
  44.                                      '     MOD_SYNTH-The device is a synthesizer.
  45.                                      
  46.    wVoices As Integer                ' Number of voices supported by an internal synthesizer device. If the
  47.                                      ' device is a port, this member is not meaningful and is set to 0.
  48.                                      
  49.    wNotes As Integer                 ' Maximum number of simultaneous notes that can be played by an internal
  50.                                      ' synthesizer device. If the device is a port, this member is not meaningful
  51.                                      ' and is set to 0.
  52.                                      
  53.    wChannelMask As Integer           ' Channels that an internal synthesizer device responds to, where the least
  54.                                      ' significant bit refers to channel 0 and the most significant bit to channel
  55.                                      ' 15. Port devices that transmit on all channels set this member to 0xFFFF.
  56.                                      
  57.    dwSupport As Long                 ' One of the following describes the optional functionality supported by
  58.                                      ' the device:
  59.                                      '     MIDICAPS_CACHE-Supports patch caching.
  60.                                      '     MIDICAPS_LRVOLUME-Supports separate left and right volume control.
  61.                                      '     MIDICAPS_STREAM-Provides direct support for the midiStreamOut function.
  62.                                      '     MIDICAPS_VOLUME-Supports volume control.
  63.                                      '
  64.                                      ' If a device supports volume changes, the MIDICAPS_VOLUME flag will be set
  65.                                      ' for the dwSupport member. If a device supports separate volume changes on
  66.                                      ' the left and right channels, both the MIDICAPS_VOLUME and the
  67.                                      ' MIDICAPS_LRVOLUME flags will be set for this member.
  68. End Type
  69.  
  70. Declare Function midiOutGetNumDevs Lib "winmm" () As Integer
  71. ' This function retrieves the number of MIDI output devices present in the system.
  72. ' The function returns the number of MIDI output devices. A zero return value means
  73. ' there are no MIDI devices in the system.
  74.  
  75. Declare Function midiOutGetDevCaps Lib "winmm.dll" Alias "midiOutGetDevCapsA" (ByVal uDeviceID As Long, lpCaps As MIDIOUTCAPS, ByVal uSize As Long) As Long
  76. ' This function queries a specified MIDI output device to determine its capabilities.
  77. ' The function requires the following parameters;
  78. '     uDeviceID-     unsigned integer variable identifying of the MIDI output device. The
  79. '                    device identifier specified by this parameter varies from zero to one
  80. '                    less than the number of devices present. This parameter can also be a
  81. '                    properly cast device handle.
  82. '     lpMidiOutCaps- address of a MIDIOUTCAPS structure. This structure is filled with
  83. '                    information about the capabilities of the device.
  84. '     cbMidiOutCaps- the size, in bytes, of the MIDIOUTCAPS structure. Use the Len
  85. '                    function with the MIDIOUTCAPS variable as the argument to get
  86. '                    this value.
  87. '
  88. ' The function returns MMSYSERR_NOERROR if successful or one of the following error values:
  89. '     MMSYSERR_BADDEVICEID    The specified device identifier is out of range.
  90. '     MMSYSERR_INVALPARAM     The specified pointer or structure is invalid.
  91. '     MMSYSERR_NODRIVER       The driver is not installed.
  92. '     MMSYSERR_NOMEM          The system is unable to load mapper string description.
  93.  
  94. Declare Function midiOutClose Lib "winmm.dll" (ByVal hMidiOut As Long) As Long
  95. ' The function closes the specified MIDI output device. The function requires a
  96. ' handle to the MIDI output device. If the function is successful, the handle is no
  97. ' longer valid after the call to this function. A successful function call returns
  98. ' MMSYSERR_NOERROR.
  99.  
  100. ' A failure returns one of the following:
  101. '     MIDIERR_STILLPLAYING  Buffers are still in the queue.
  102. '     MMSYSERR_INVALHANDLE  The specified device handle is invalid.
  103. '     MMSYSERR_NOMEM        The system is unable to load mapper string description.
  104.  
  105. Declare Function midiOutOpen Lib "winmm.dll" (lphMidiOut As Long, ByVal uDeviceID As Long, ByVal dwCallback As Long, ByVal dwInstance As Long, ByVal dwFlags As Long) As Long
  106. ' The function opens a MIDI output device for playback. The function requires the
  107. ' following parameters
  108. '     lphmo-               Address of an HMIDIOUT handle. This location is filled with a
  109. '                          handle identifying the opened MIDI output device. The handle
  110. '                          is used to identify the device in calls to other MIDI output
  111. '                          functions.
  112. '     uDeviceID-           Identifier of the MIDI output device that is to be opened.
  113. '     dwCallback-          Address of a callback function, an event handle, a thread
  114. '                          identifier, or a handle of a window or thread called during
  115. '                          MIDI playback to process messages related to the progress of
  116. '                          the playback. If no callback is desired, set this value to 0.
  117. '     dwCallbackInstance-  User instance data passed to the callback. Set this value to 0.
  118. '     dwFlags-Call